Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@smithy/middleware-content-length
Advanced tools
[![NPM version](https://img.shields.io/npm/v/@smithy/middleware-content-length/latest.svg)](https://www.npmjs.com/package/@smithy/middleware-content-length) [![NPM downloads](https://img.shields.io/npm/dm/@smithy/middleware-content-length.svg)](https://ww
@smithy/middleware-content-length is a middleware package for the Smithy client framework. It is used to automatically calculate and set the Content-Length header for HTTP requests. This is particularly useful when dealing with payloads where the size needs to be explicitly defined.
Automatic Content-Length Calculation
This feature automatically calculates the Content-Length of the request body and sets it in the HTTP headers. This is useful for ensuring that the server knows the size of the incoming request payload.
const { ContentLengthMiddleware } = require('@smithy/middleware-content-length');
const { HttpRequest } = require('@smithy/protocol-http');
const request = new HttpRequest({
hostname: 'example.com',
method: 'POST',
body: JSON.stringify({ key: 'value' })
});
const middleware = ContentLengthMiddleware();
const handler = middleware((next) => async (args) => {
return next(args);
});
handler({ request }).then((response) => {
console.log(response.request.headers['Content-Length']); // Outputs the calculated Content-Length
});
Axios is a popular HTTP client for Node.js and the browser. It automatically sets the Content-Length header for POST requests with a body. However, it is a full-fledged HTTP client and not just middleware.
The request package is another HTTP client for Node.js that automatically handles the Content-Length header for requests with a body. Like axios, it is a complete HTTP client and not just middleware.
Node-fetch is a lightweight module that brings window.fetch to Node.js. It also automatically sets the Content-Length header for requests with a body. It is more lightweight compared to axios and request.
FAQs
[![NPM version](https://img.shields.io/npm/v/@smithy/middleware-content-length/latest.svg)](https://www.npmjs.com/package/@smithy/middleware-content-length) [![NPM downloads](https://img.shields.io/npm/dm/@smithy/middleware-content-length.svg)](https://ww
The npm package @smithy/middleware-content-length receives a total of 9,569,656 weekly downloads. As such, @smithy/middleware-content-length popularity was classified as popular.
We found that @smithy/middleware-content-length demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.